@if($customFields)
{!! trans('lang.main_fields') !!}
@endif
{!! Form::label('price', trans("lang.doctor_appointment_price"), ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::number('price', null, ['class' => 'form-control','placeholder'=> trans("lang.doctor_appointment_price_placeholder")]) !!}
{{ trans("lang.doctor_appointment_price_help") }}
{!! Form::label('quantity', trans("lang.doctor_appointment_quantity"), ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::number('quantity', null, ['class' => 'form-control','placeholder'=> trans("lang.doctor_appointment_quantity_placeholder")]) !!}
{{ trans("lang.doctor_appointment_quantity_help") }}
{!! Form::label('doctor_id', trans("lang.doctor_appointment_doctor_id"),['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::select('doctor_id', $doctor, null, ['class' => 'select2 form-control']) !!}
{{ trans("lang.doctor_appointment_doctor_id_help") }}
{!! Form::label('options[]', trans("lang.doctor_appointment_options"),['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::select('options[]', $option, $optionsSelected, ['class' => 'select2 form-control' , 'multiple'=>'multiple']) !!}
{{ trans("lang.doctor_appointment_options_help") }}
{!! Form::label('appointment_id', trans("lang.doctor_appointment_appointment_id"),['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::select('appointment_id', $appointment, null, ['class' => 'select2 form-control']) !!}
{{ trans("lang.doctor_appointment_appointment_id_help") }}
@if($customFields)
{!! trans('lang.custom_field_plural') !!}
{!! $customFields !!}
@endif
{{trans('lang.cancel')}}