@extends('admin/layouts/default') {{-- Page title --}} @section('title') Create New country @parent @stop {{-- Page content --}} @section('content')

Countries

Create a new country

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::open(['url' => 'admin/countries']) !!}
{!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('calling_code', 'Calling Code: ') !!} {!! Form::text('calling_code', null, ['class' => 'form-control']) !!}
@lang('button.cancel')
{!! Form::close() !!}
@stop