{{--synced with serve--}} @extends('admin.template.master') @section('stylesheets') @endsection @section('title')

EMI Setting

@endsection @section('main-content')
@if(Session::has('message'))
{{Session('message')}}
@endif

{!! Form::open(['url' => '/admin/emi-setting/new', 'enctype' => 'multipart/form-data']) !!}
{!! Form::label('Bank Name') !!} {!! Form::text('bank_name', null, ['class' => 'form-control', 'placeholder' => 'Bank Name', 'id' => 'bank_name']) !!} @if ($errors->has('bank_name')) {!! $errors->first('bank_name') !!}@endif
@foreach($tenures as $tenure) @endforeach
{!! Form::close() !!}
@endsection @section('javascripts') @endsection