{!! Html::decode(Form::label('name', 'Name * ')) !!} {{ Form::text('name', null, ['class' => 'form-control' . ($errors->has('name') ? ' is-invalid' : '')]) }} @if ($errors->has('name'))
{{ $errors->first('name') }}
@endif
{{ Form::label('description', 'Description') }} {{ Form::textarea('description', null, ['id' => 'description', 'class' => 'form-control summernote-simple' . ($errors->has('description') ? ' is-invalid' : '')]) }} @if ($errors->has('description'))
{{ $errors->first('description') }}
@endif
{!! Html::decode(Form::label('date', 'Date * ')) !!} {{ Form::text('date', null, ['class' => 'form-control datepicker' . ($errors->has('date') ? ' is-invalid' : '')]) }} @if ($errors->has('date'))
{{ $errors->first('date') }}
@endif
{!! Html::decode(Form::label('pin', 'Pin')) !!} {{ Form::text('pin', null, ['class' => 'form-control' . ($errors->has('pin') ? ' is-invalid' : '')]) }} @if ($errors->has('pin'))
{{ $errors->first('pin') }}
@endif
{!! Html::decode(Form::label('status', 'Status * ')) !!} {!! Form::select('status', $programStatuses, $program->status ?? null , [ 'class' => 'form-control' . ($errors->has('status') ? ' is-invalid' : ''), 'placeholder' => 'Select Status', ]) !!}
{{ $errors->first('status') }}
@push('scripts') @endpush