@extends('layout.app') @section('title','Create Firm Account') @push('headerscript') @endpush @section('content')
{!! Form::open(['route' => ['firm-account.store'], 'method' => 'post','autocomplete'=>'off','files'=>true]) !!}
{!! Form::select("firm_id", [''=>'--Select--']+$firm, old("firm_id"), ['class'=>'form-control select2' ,'id' => 'firm_id'] ) !!}
{{$errors->first('firm_id')}}
{{$errors->first('account_holder')}}
{{$errors->first('bank_name')}}
{{$errors->first('account_no')}}
{{$errors->first('ifsc')}}
{!! Form::close() !!}
@endsection @push('footerscript') @endpush