@extends('admin.layouts.master') @section('title', 'Add Country') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any())
@foreach($errors->all() as $error)
{{ $error}}
×
@endforeach
@endif
{{ __('Add Country') }}
{{ __("Back")}}
{{csrf_field()}}
{{ __('Country') }}
*
{{ __('Choose Country') }}:
@foreach ($countries as $country)
{{ $country->nicename }}
@endforeach
{{ __("Reset")}}
{{ __("Create")}}
@endsection