@csrf @method('put')
@include('partials.fields',['fields'=>[ ['ftype'=>'input','name'=>"Restaurant Name",'id'=>"name",'placeholder'=>"Restaurant Name",'required'=>true,'value'=>$restorant->name], ['ftype'=>'input','name'=>"Restaurant description",'id'=>"description",'placeholder'=>"Restaurant description",'required'=>true,'value'=>$restorant->description], ['ftype'=>'input','name'=>"Restaurant address",'id'=>"address",'placeholder'=>"Restaurant address",'required'=>true,'value'=>$restorant->address], ['ftype'=>'input','name'=>"Restaurant phone",'id'=>"phone",'placeholder'=>"Restaurant phone",'required'=>true,'value'=>$restorant->phone], ]]) @if(config('settings.multi_city')) @include('partials.fields',['fields'=>[ ['ftype'=>'select','name'=>"Restaurant city",'id'=>"city_id",'data'=>$cities,'required'=>true,'value'=>$restorant->city_id], ]]) @endif @if(auth()->user()->hasRole('admin'))
@if ($errors->has('fee')) {{ $errors->first('fee') }} @endif
@if ($errors->has('static_fee')) {{ $errors->first('static_fee') }} @endif


@endif
@if (!config('app.issd',false)) @include('restorants.partials.options') @endif