@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]]) !!}