{!! Form::label('date', __('models/projects.fields.date').':') !!}
{!! Form::text('date', null, ['class' => ($errors->has('date')) ? 'form-control is-invalid' : 'form-control' ,'id'=>'date']) !!} @if ($errors->has('date')) {{ $errors->first('date') }} @endif
@section('scripts') @parent @endsection
{!! Form::label('category', 'Project Category:') !!}
{!! Form::label('quotation_id', 'Select Quotation:') !!}
@section('scripts') @parent @endsection
{!! Form::label('subject', __('models/projects.fields.subject').':') !!} {!! Form::text('subject', null, ['class' => ($errors->has('subject')) ? 'form-control is-invalid' : 'form-control']) !!} @if ($errors->has('subject')) {{ $errors->first('subject') }} @endif
{!! Form::select('category', ['normal' => 'Normal', 'amc' => 'AMC'], null, ['class' => 'form-control', 'id' => 'project_category','hidden' => true]) !!}
{!! Form::label('note', __('models/projects.fields.note').':') !!} {!! Form::textarea('note', null, ['class' => 'form-control']) !!}
{!! Form::submit(__('crud.save'), ['class' => 'btn btn-danger btn-flat btn-lg']) !!} @lang('crud.cancel')