@extends('layouts.default') @section('content') {!! Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) !!} {!! Form::model($currency, ['class' => 'form-horizontal','id' => 'update','url' => route('currency.update',$currency->id)]) !!}
Mandatory fields
{!! ExpandedForm::text('name',null,['maxlength' => 48]) !!} {!! ExpandedForm::text('symbol',null,['maxlength' => 8]) !!} {!! ExpandedForm::text('code',null,['maxlength' => 3]) !!}
Options
{!! ExpandedForm::optionsList('update','currency') !!}

{!! Form::close() !!} @stop