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

Options
{{Form::ffOptionsList('update','currency')}}
{{Form::close()}} @stop