@extends('layouts.admin') @section('content')
{{ trans('global.add') }} {{ trans('cruds.bankAccount.title') }}
@csrf
@if($errors->has('bank_name'))
{{ $errors->first('bank_name') }}
@endif {{ trans('cruds.bankAccount.fields.bank_helper') }}
@if($errors->has('account_no'))
{{ $errors->first('account_no') }}
@endif {{ trans('cruds.bankAccount.fields.account_no_helper') }}
@if($errors->has('balance'))
{{ $errors->first('balance') }}
@endif {{ trans('cruds.bankAccount.fields.balance_helper') }}
@if($errors->has('contact_person'))
{{ $errors->first('contact_person') }}
@endif {{ trans('cruds.bankAccount.fields.contact_person_helper') }}
@if($errors->has('phone'))
{{ $errors->first('phone') }}
@endif {{ trans('cruds.bankAccount.fields.phone_helper') }}
@if($errors->has('remarks'))
{{ $errors->first('remarks') }}
@endif {{ trans('cruds.siteReg.type.remarks_helper') }}
@endsection