@extends('layouts.app') @section('content-header')

{{__('countries.edit_country')}}

@endsection @section('content')

{{ !empty($title) ? ucfirst($title) : 'Country' }}

{{ csrf_field() }}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @include ('countries.form', ['country' => $country,])
@endsection