@extends("app") @section('head_title', 'Create Project | '.getcong('site_name') ) @section('head_url', Request::url()) @section("content")

Create Project

{!! Form::open(array('url' => 'admin/projects/add-projects','class'=>'','id'=>'submit-property-main-form','role'=>'form','enctype' => 'multipart/form-data')) !!} @if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif Basic information
@if ($errors->has('ProjectName')) {{ $errors->first('ProjectName') }} @endif
@if ($errors->has('ProjectNumber')) {{ $errors->first('ProjectNumber') }} @endif
@if ($errors->has('StartDate')) {{ $errors->first('StartDate') }} @endif
@if ($errors->has('EndDate')) {{ $errors->first('EndDate') }} @endif
@if ($errors->has('Description')) {{ $errors->first('Description') }} @endif

{!! Form::close() !!}
@endsection