@extends('super_admins.layouts.master') @section('title') Edit Bank Account @endsection @php $currency_symbol = App\Models\GeneralSetting::where('name', 'currency_symbol')->first(); @endphp @section('css') @endsection @section('content') @if ($errors->any()) @foreach ($errors->all() as $error) {{-- {{ $error }} --}} @endforeach @endif Bank Account Home Bank Account Edit Bank Account @csrf @method('PUT') Bank Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif Account Holder Name @if ($errors->has('account_holder_name')) {{ $errors->first('account_holder_name') }} @endif Account Number @if ($errors->has('account_number')) {{ $errors->first('account_number') }} @endif IBAN Number @if ($errors->has('iban_number')) {{ $errors->first('iban_number') }} @endif BIC Number @if ($errors->has('bic_swift')) {{ $errors->first('bic_swift') }} @endif {{-- Price {{ $currency_symbol && $currency_symbol->value ? $currency_symbol->value : '' }} @if ($errors->has('price')) {{ $errors->first('price') }} @endif --}} Description {{ old('description') }} @if ($errors->has('description')) {{ $errors->first('description') }} @endif Status Select Bank Account To Be Active Or Not {{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}} Update @include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection