@extends('layout.app') @section('title','Create Firm Account') @push('header_script') @endpush @section('content')
{!! Form::open(['route' => ['firm-account.store'], 'class'=>'row g-3 needs-validation', '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('bank_name')}}
{{$errors->first('account_holder')}}
{{$errors->first('account_no')}}
{{$errors->first('ifsc')}}
{!! Form::close() !!}
@endsection @push('footer_script') @endpush