@extends('admin.template.master') @section('stylesheets') @endsection @section('title')

EMI Settings Bank Settings

@endsection @section('main-content')

Please edit carefully

@if ($errors->any()) @foreach ($errors->all() as $error)
{{$error}}
@endforeach @endif {!! Form::open(['method' => 'PUT', 'route' => 'EMISiteSettingsUpdate', 'enctype' => 'multipart/form-data','onsubmit' => 'return confirm("Are you sure? Be careful!")']) !!}
{!! Form::label('Full Name') !!} {!! Form::text('full_name', $bank['full_name'] , ['class' => 'form-control', 'placeholder' => 'Full Name', 'id' => 'setting_full_name']) !!}
{!! Form::label('Unique Short Name (i.e, ebl, brac, scb, nrb...)') !!} {!! Form::text('unique_short_name', $bank['unique_short_name'] , ['class' => 'form-control', 'placeholder' => 'Unique Short Name (i.e, ebl, brac, scb, nrb...)', 'id' => 'unique_short_name']) !!}

It will be used to identify the bank

{!! Form::label('Tenures By months. Comma separated value(i.e, 3,6,9,12,36)') !!} {!! Form::text('tenures', $bank['tenures'] , ['class' => 'form-control', 'placeholder' => 'Tenures By months. Comma separated value(i.e, 3,6,9,12,36)', 'id' => 'tenures']) !!}
{!! Form::label('Minimum amount') !!} {!! Form::text('minimum', $bank['minimum'] , ['class' => 'form-control', 'placeholder' => 'Minimum amount', 'id' => 'minimum']) !!}
{!! Form::label('Active') !!}
{!! Form::close() !!}
@endsection @section('javascripts') @endsection