@extends('layouts.contentLayoutMaster') @php $breadcrumbs = [[['link' => route('countries.index'), 'name' => "الدول"], ['link' => route('countries.edit',$country), 'name' => "تعديل معلومات الدولة"]],['title'=> 'تعديل']]; @endphp @section('title', 'ادارة الدول') @section('content') @component('components.forms.formCard',['title' => sprintf('تعديل معلومات الدولة : %s ', $country->country_name)]) {!! Form::model($country, ['method' => 'PUT', 'onsubmit' => 'showLoader()','route' => ['countries.update', $country->id]]) !!} معلومات الدولة
مفعل
تعديل معلومات الدولة عودة
{!! Form::close() !!} @endcomponent @endsection