@extends('layouts.admin') @section('content')
{{ trans('global.create') }} {{ trans('cruds.bankAccount.title_singular') }}
@csrf
@if($errors->has('account_title'))

{{ $errors->first('account_title') }}

@endif

{{ trans('cruds.bankAccount.fields.account_title_helper') }}

@if($errors->has('account_type_id'))

{{ $errors->first('account_type_id') }}

@endif
@if($errors->has('users'))

{{ $errors->first('users') }}

@endif

{{ trans('cruds.bankAccount.fields.users_helper') }}

@if($errors->has('bank_name'))

{{ $errors->first('bank_name') }}

@endif

{{ trans('cruds.bankAccount.fields.bank_name_helper') }}

@if($errors->has('branch_name'))

{{ $errors->first('branch_name') }}

@endif

{{ trans('cruds.bankAccount.fields.branch_name_helper') }}

@if($errors->has('account_opening_date'))

{{ $errors->first('account_opening_date') }}

@endif

{{ trans('cruds.bankAccount.fields.account_opening_date_helper') }}

@if($errors->has('balance'))

{{ $errors->first('balance') }}

@endif

{{ trans('cruds.bankAccount.fields.balance_helper') }}

@if($errors->has('account_number'))

{{ $errors->first('account_number') }}

@endif

{{ trans('cruds.bankAccount.fields.account_number_helper') }}

@endsection