@foreach (config('translatable.locales') as $locale)
{{ LaravelLocalization::getSupportedLocales()[$locale]['native'] }}
{!! Form::text($locale."[name]", isset($cancel_reason) ? $cancel_reason->translate($locale)->name : null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.'.$locale.'.name')]) !!}
{!! Form::textarea($locale."[desc]", isset($cancel_reason) ? optional($cancel_reason->translate($locale))->desc : null, ['class' => 'form-control' , 'placeholder' => trans('dashboard.'.$locale.'.desc')]) !!}
@endforeach
{{ trans('dashboard.general.public_data') }}
{!! Form::radio('user_type', "client", !isset($app_offer) || (isset($app_offer) && $app_offer->user_type == "client") ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'client']) !!}
{!! Form::radio('user_type', "driver", isset($app_offer) && $app_offer->user_type == "driver" ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'driver']) !!}
{!! Form::radio('user_type', "client_and_driver", isset($app_offer) && $app_offer->user_type == "client_and_driver" ? 'checked' : null , ['class' => 'custom-control-input' , 'id' => 'client_and_driver']) !!}
@section('page_styles') @endsection @section('vendor_scripts') @endsection @section('page_scripts') @endsection