@extends('layouts/gnr_layout') @section('title', '| Bank Branch') @section('content')
Bank/Donor Branch
{{--
--}} {!! Form::open(['url'=>'','class'=>'form-horizontal form-groups']) !!}
{!! Form::label('bank', 'Bank/Donor Name:', ['class' => 'col-sm-3 control-label']) !!}
@php $banks = array(''=>'Select Bank/Donor') + DB::table('gnr_bank')->pluck('name','id')->toArray(); @endphp {!! Form::select('bank', $banks,null, array('class'=>'form-control', 'id' => 'bank')) !!}

{!! Form::label('branchName', 'Branch Name:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('branchName', null, array('class'=>'form-control', 'id' => 'branchName')) !!}

{!! Form::label('telephoneNumber', 'Tel. Number:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('telephoneNumber', null, array('class'=>'form-control', 'id' => 'telephoneNumber')) !!}

{!! Form::label('branchEmail', 'E-mail:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('branchEmail', null, array('class'=>'form-control', 'id' => 'branchEmail')) !!}

{!! Form::label('address', 'Address:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::textArea('address', null, array('class'=>'form-control', 'id' => 'address','rows'=>'1')) !!}

{{--
{!! Form::label('division', 'Division:', ['class' => 'col-sm-3 control-label']) !!}
@php $divisions = array(''=>'Select Division') + DB::table('division')->pluck('division_name','id')->toArray(); @endphp {!! Form::select('division', $divisions,null, array('class'=>'form-control', 'id' => 'division')) !!}

--}} {{--
{!! Form::label('district', 'District:', ['class' => 'col-sm-3 control-label']) !!}
@php $districts = array(''=>'Select District') + DB::table('district')->pluck('district_name','id')->toArray(); @endphp {!! Form::select('district', $districts,null, array('class'=>'form-control', 'id' => 'district')) !!}

--}} {{--
{!! Form::label('upazilla', 'Upazilla:', ['class' => 'col-sm-3 control-label']) !!}
@php $upazillas = array(''=>'Select Upazilla') + DB::table('upzilla')->pluck('upzilla_name','id')->toArray(); @endphp {!! Form::select('upazilla', $upazillas,null, array('class'=>'form-control', 'id' => 'upazilla')) !!}

--}}
{!! Form::label('contactPerson', 'Contact Person:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('contactPerson', null, array('class'=>'form-control', 'id' => 'contactPerson')) !!}

{!! Form::label('designation', 'Designation:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('designation', null, array('class'=>'form-control', 'id' => 'designation')) !!}

{!! Form::label('contactPersonTelephoneNumber', 'Tel. Number:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('contactPersonTelephoneNumber', null, array('class'=>'form-control', 'id' => 'contactPersonTelephoneNumber')) !!}

{!! Form::label('contactPersonMobileNumber', 'Mobile Number:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('contactPersonMobileNumber', null, array('class'=>'form-control', 'id' => 'contactPersonMobileNumber')) !!}

{!! Form::label('contactPersonEmail', 'E-mail:', ['class' => 'col-sm-3 control-label']) !!}
{!! Form::text('contactPersonEmail', null, array('class'=>'form-control', 'id' => 'contactPersonEmail')) !!}

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