{{Form::open(array('url'=>'construction_project','method'=>'post'))}}
{{Form::label('name',__('Name'),['class'=>'form-label'])}}
*
{{Form::text('name',null,array('class'=>'form-control','required' => 'required','placeholder'=>__('Enter Project Name')))}}
{{Form::label('project_location',__('Project_Location'),['class'=>'form-label'])}}
*
{{Form::text('project_location',null,array('class'=>'form-control','required' => 'required','placeholder'=>__('Enter Project Location')))}}
{{Form::label('start_date',__('Start Date'),['class'=>'form-label'])}}
*
{{Form::date('start_date',null,array('class'=>'form-control','required' => 'required'))}}
{{Form::label('end_date',__('End Date'),['class'=>'form-label'])}}
*
{{Form::date('end_date',null,array('class'=>'form-control','required' => 'required'))}}
{{Form::label('project_budget',__('Project Budget'),['class'=>'form-label'])}}
*
{{Form::number('project_budget',null,array('class'=>'form-control','min'=>1,'required' => 'required'))}}
{{ Form::label('status', __('Status'), ['class' => 'form-label']) }}
*
@foreach(\App\Models\Construction_project::$project_status as $k => $v)
{{__($v)}}
@endforeach
{{Form::label('non_working_days',__('non_working_days'),['class'=>'form-label'])}}
*
Monday
Tuesday
Wednesday
Thursday
Friday
Saturday
Sunday
{{Form::label('holidays',__('holiday_status'),['class'=>'form-label'])}}
*
{{__('holidays')}}
@error('name')
{{ $message }}
@enderror
{{Form::close()}}