{{ Form::label('name',__('Name')) }}
{{ Form::text('name',old('name') ? old('name') : (!empty($record) ? $record->name : null), [ 'class' => 'form-control', 'placeholder' => __('Enter Name'), 'disabled' => ($option == 'show' ? 'disabled' : null), 'id' => 'name', 'required', ]) }}
{{ Form::label('country_id',__('Country')) }}
{{ Form::label('start_date',__('Start Date')) }}
{{ Form::text('start_date',old('start_date') ? old('start_date') : (!empty($record) ? $record->start_date : null), [ 'class' => 'form-control', 'disabled' => ($option == 'show' ? 'disabled' : null), 'data-inputmask' => \app\Helpers\MyHelpers::format_input(), 'id' => 'start_date', 'required', 'data-mask' ]) }}
{{ Form::label('end_date',__('End Date')) }}
{{ Form::text('end_date',old('end_date') ? old('end_date') : (!empty($record) ? $record->end_date : null), [ 'class' => 'form-control', 'disabled' => ($option == 'show' ? 'disabled' : null), 'data-inputmask' => \app\Helpers\MyHelpers::format_input(), 'id' => 'end_date', 'required', 'data-mask' ]) }}
{{ Form::label('active',__('Active ?')) }}
{{ Form::select('active',\app\Helpers\MyHelpers::select_yesno(),(!empty($record) ? $record->active : 0), [ 'class' => 'form-control', 'disabled' => ($option == 'show' ? 'disabled' : null), 'id' => 'active' ]) }}