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

Edit Project

@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