@extends('layouts.layout-2') @section('content') @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

{{ __('Create/Edit Land') }}

{!! Form::open(['action' => route('admin_country_store'), 'class' => 'form-horizontal', 'id'=>'']) !!}
  {{ __('back') }}
@include('admin.country.form')
  {{ __('back') }}
{!! Form::close() !!} @endsection