@extends('admin.layouts.app') @section('title', 'Edit Branch') @section('content')
{{-- Card Header --}}

✏️ Edit Branch

Back
{{-- Card Body --}}
@csrf @method('PUT') {{-- Row 1: Select Bank + Branch Address --}}
@error('branch_address')
{{ $message }}
@enderror
{{-- Row 2: Image + Status --}}
@if($branch->image)
Branch Image
@endif
{{-- Buttons --}}
Cancel
@endsection