@extends('layouts/acc_layout') @section('title', '| Edit Vault Setting') @section('content') @include('successMsg')
Edit Vault Setting
{!! Form::open(array('url' => '#', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
{!! Form::label('currency', 'Currency:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('currency', $value = $currency, ['class' => 'form-control', 'id' => 'currency', 'type' => 'text', 'placeholder' => 'Enter Currency','autocomplete'=>'off']) !!}

{!! Form::hidden('id', $VaultSetting->id) !!}

Add Banknote:

@foreach($banknotes as $i=> $banknote) @endforeach
SL# Banknote Action
{{ ++$no }} {!! Form::text('banknote[]', $value = $banknote, ['class' => 'form-control banknote', 'id' => 'banknote', 'type' => 'text', 'placeholder' => 'Enter Banknote','autocomplete'=>'off']) !!}

{!! Form::label('submit', ' ', ['class' => 'col-sm-5 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'add', 'class' => 'btn btn-info']) !!} Close
{!! Form::close() !!}
@endsection