@extends('admin.layout.master') @section('title', 'البنوك') @section('content')
البنوك
إنشاء جديد
@csrf
إسم البنك
@if ($errors->has('bank_name'))
{{ $errors->first('bank_name') }}
@endif
رقم الحساب
@if ($errors->has('account_number'))
{{ $errors->first('account_number') }}
@endif
رقم الأيبان
@if ($errors->has('iban_number'))
{{ $errors->first('iban_number') }}
@endif
إختيار الدولة
@foreach($countries as $country)
id ? "selected" : ''}}>{{$country->name['ar']}}
@endforeach
@if ($errors->has('country_id'))
{{ $errors->first('country_id') }}
@endif
حفظ
@stop