@extends('layouts.master') @section('content')

{{ ucwords(Lang::get('countries.edit') . ': ' . $country->country_name) }}

{{ Form::model($country, array('method' => 'put', 'route' => array('countries.update', $country->id))) }} {{ Form::label('countries.short_code', ucwords(Lang::get('countries.short_code'))) }} {{ Form::text('short_code', $country->short_code) }} {{ Form::label('country_name', ucwords(Lang::get('countries.country_name'))) }} {{ Form::text('country_name', $country->country_name) }} {{ Form::submit(ucwords(Lang::get('countries.edit')), array('class' => 'button radius')) }} {{ Form::close() }}
@stop