@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('cancel_type', "order" ,'checked') !!} {{ trans('dashboard.cancel_reason.cancel_types.order') }}
{!! Form::radio('cancel_type', "reservation") !!} {{ trans('dashboard.cancel_reason.cancel_types.reservation') }}
{!! Form::radio('cancel_type', "order_and_reservation") !!} {{ trans('dashboard.cancel_reason.cancel_types.order_and_reservation') }}
@section('page_styles') @endsection @section('vendor_scripts') @endsection @section('page_scripts') @endsection