@extends('layouts.app') @section('content')
Update Bank
@csrf
@if ($errors->has('bank_name'))
{{ $errors->first('bank_name') }}
@endif
@if ($errors->has('branch'))
{{ $errors->first('branch') }}
@endif
@if ($errors->has('swift_code'))
{{ $errors->first('swift_code') }}
@endif
@if ($errors->has('account_name'))
{{ $errors->first('account_name') }}
@endif
@if ($errors->has('account_number'))
{{ $errors->first('account_number') }}
@endif
@section('script') @endsection @endsection