@extends('layouts.app') @section('title', 'Edit Project | ') @section('content')
@csrf

Project Details (Edit Project)

@if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
@if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
@if ($errors->has('type'))
{{ $errors->first('type') }}
@endif (If Project Type is re-curing work, so there is no required deadline. )
@if($project->type=='fixed')
@if ($errors->has('start_date'))
{{ $errors->first('start_date') }}
@endif
@if ($errors->has('end_date'))
{{ $errors->first('end_date') }}
@endif
@endif
@if ($errors->has('actual_start_date'))
{{ $errors->first('actual_start_date') }}
@endif (System will track from this date. )
@if ($errors->has('project_leader'))
{{ $errors->first('project_leader') }}
@endif (Who will be responsible for all project activity.)
Update project status
{!! Form::close() !!}
@stack('scripts') @endsection