@extends('layouts.app') @section('content-header')
{{__('countries.create_country')}}
{{__('countries.countries')}}
{{__('commons.create')}}
@endsection @section('content')
{{__('countries.create_new_country')}}
{{ csrf_field() }}
@if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif @include ('countries.form', ['country' => null,])
@endsection