@extends('admin.layout.app') @section('title','Create Employee Bank Detail') @section('content')

Create Employee Bank Detail

{!! Form::open(['route'=>array('employee-bank-detail.store'), 'onsubmit'=>'BtnSubmit.disabled = true','method' => 'post']) !!}
{!! Form::select("employee_id", [''=>'Select']+$employees, old("employee_id"), ['class'=>'form-control', 'required', 'id'=>'employee_id'] ) !!}
{{$errors->first() ? 'Employee bank details already exists':''}}
{{$errors->first('account_no')}}
{{$errors->first('iban_code')}}
{{$errors->first('bank_name')}}
{{$errors->first('bank_branch')}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush