@extends('admin.layouts.master') @section('page_title', __('admin.Edit :name' , ['name' => __('admin.Development')])) @section('page_heading', __('admin.Edit :name' , ['name' => __('admin.Development')])) @section('page_text', __('admin.Edit :name' , ['name' => __('admin.Development')])) @section('page_breadcrumb_icon') @endsection @section('page_breadcrumb_item', 'Development') @section('page_breadcrumb_item2', 'Edit Development') @section('content')
{!! Form::model($item, ['method' => 'PATCH','route' => ['development.update', $item->id]]) !!}
{!! Form::text('name', $item->name, array('required'=>'required','placeholder' => 'Enter name','class' => 'form-control')) !!}
{!! Form::text('address', $item->address, array('required'=>'required','placeholder' => 'Enter Address','class' => 'form-control')) !!}
{!! Form::number('no_of_building',$item->no_of_buildings, array('required'=>'required','placeholder' => '','class' => 'form-control')) !!}
@lang('admin.Cancel')
{!! Form::close() !!}
@endsection