2014-12-24 05:32:18 -06:00
|
|
|
@extends('layouts.default')
|
|
|
|
@section('content')
|
|
|
|
{{ Breadcrumbs::renderIfExists(Route::getCurrentRoute()->getName()) }}
|
2014-12-24 07:02:21 -06:00
|
|
|
{{Form::model($currency, ['class' => 'form-horizontal','id' => 'update','url' => route('currency.update',$currency->id)])}}
|
2014-12-24 05:32:18 -06:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-6 col-md-6 col-sm-12">
|
|
|
|
<div class="panel panel-primary">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<i class="fa {{{$subTitleIcon}}}"></i> Mandatory fields
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
{{Form::ffText('name',null,['maxlength' => 48])}}
|
|
|
|
{{Form::ffText('symbol',null,['maxlength' => 8])}}
|
|
|
|
{{Form::ffText('code',null,['maxlength' => 3])}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<p>
|
|
|
|
<button type="submit" class="btn btn-lg btn-success">
|
|
|
|
<i class="fa fa-plus-circle"></i> Update currency
|
|
|
|
</button>
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-lg-6 col-md-6 col-sm-12">
|
|
|
|
|
|
|
|
<!-- panel for options -->
|
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<i class="fa fa-bolt"></i> Options
|
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
|
|
|
{{Form::ffOptionsList('update','currency')}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{{Form::close()}}
|
2015-01-01 23:16:49 -06:00
|
|
|
@stop
|