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

Countries

Edit country

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($country, ['method' => 'PATCH', 'action' => ['CountriesController@update', $country->id]]) !!}
{!! 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']) !!}
{!! Form::submit('Update', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@stop