@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

@csrf @method('PUT')
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('account_holder_name')) {{ $errors->first('account_holder_name') }} @endif
@if ($errors->has('account_number')) {{ $errors->first('account_number') }} @endif
@if ($errors->has('iban_number')) {{ $errors->first('iban_number') }} @endif
@if ($errors->has('bic_swift')) {{ $errors->first('bic_swift') }} @endif
{{--
{{ $currency_symbol && $currency_symbol->value ? $currency_symbol->value : '' }} @if ($errors->has('price')) {{ $errors->first('price') }} @endif
--}}
@if ($errors->has('description')) {{ $errors->first('description') }} @endif
{{-- @if ($errors->has('is_active')) {{ $errors->first('is_active') }} @endif --}}
@include('super_admins.includes.image_cropper_modal') @endsection @section('scripts') @include('super_admins.includes.image_cropper_scripts') @endsection