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

Create Property

@if(Session::has('flash_message'))
{{ Session::get('flash_message') }}
@endif Basic information
@if ($errors->has('property_name')) {{ $errors->first('property_name') }} @endif
@if ($errors->has('RefNumber')) {{ $errors->first('RefNumber') }} @endif
@if ($errors->has('property_type')) {{ $errors->first('property_type') }} @endif
@if ($errors->has('property_purpose')) {{ $errors->first('property_purpose') }} @endif
@if ($errors->has('description')) {{ $errors->first('description') }} @endif

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