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

Regions

Edit region

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {!! Form::model($region, ['method' => 'PATCH', 'action' => ['RegionsController@update', $region->id]]) !!}
{!! Form::label('name', 'Name: ') !!} {!! Form::text('name', null, ['class' => 'form-control']) !!}
{!! Form::label('code', 'Code: ') !!} {!! Form::text('code', null, ['class' => 'form-control']) !!}
{!! Form::label('country_id', 'Country: ') !!} {!! Form::select('country_id', $country, null, ['class' => 'form-control']) !!}
{!! Form::submit('Update', ['class' => 'btn btn-primary form-control']) !!}
{!! Form::close() !!}
@stop