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

Edit Country

@include('adminlte-templates::common.errors')
{!! Form::model($country, ['route' => ['countries.update', $country->id], 'method' => 'patch']) !!}
@include('countries.fields')
{!! Form::close() !!}
@endsection