@if($customFields)
{!! trans('lang.main_fields') !!}
@endif
{!! Form::label('method', trans("lang.clinic_payout_method"),['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::select('method', ['Bank' => trans('lang.bank'),'Cash'=> trans('lang.cash')], null, ['class' => 'select2 form-control']) !!}
{{ trans("lang.clinic_payout_method_help") }}
{!! Form::label('note', trans("lang.clinic_payout_note"), ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{!! Form::textarea('note', null, ['class' => 'form-control','placeholder'=> trans("lang.clinic_payout_note_placeholder") ]) !!}
{{ trans("lang.clinic_payout_note_help") }}
{!! Form::label('clinic_id', trans("lang.clinic_payout_clinic_id"),['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{{Form::hidden('clinic_id', request('id'))}} {{$clinic->name}}
{!! Form::label('amount', trans("lang.clinic_payout_amount"), ['class' => 'col-md-3 control-label text-md-right mx-1']) !!}
{{Form::hidden('amount', $amount)}} {!! getPrice($amount) !!}
@if($customFields)
{!! trans('lang.custom_field_plural') !!}
{!! $customFields !!}
@endif
{{trans('lang.cancel')}}