@extends('admin.layouts.master') @section('page_title', __('admin.Add :name' , ['name' => __('admin.Development')])) @section('page_heading', __('admin.Add :name' , ['name' => __('admin.Development')])) @section('page_text', __('admin.Add :name' , ['name' => __('admin.Development')])) @section('page_breadcrumb_icon') @endsection @section('page_breadcrumb_item', 'Development') @section('page_breadcrumb_item2', 'Add Development') @section('content')
{!! Form::open(array('novalidate'=>'novalidate','id' => 'signupForm', 'route' => 'development.store','method'=>'POST')) !!}
{!! Form::text('name', null, array('required'=>'required','placeholder' => 'Enter name','class' => 'form-control')) !!}
{!! Form::text('address', null, array('required'=>'required','placeholder' => 'Enter Address','class' => 'form-control')) !!}
{!! Form::number('no_of_building', null, array('required'=>'required','placeholder' => '','class' => 'form-control')) !!}
@lang('admin.Cancel')
{!! Form::close() !!}
@endsection