@extends('layouts.app')
@section('urlContent')
{!! view('components.breadcrumbs', [
'b_items' => [
'Bankalar' => '/root/banks',
'Banka Oluştur' => '/root/create/bank',
],
]) !!}
@endsection
@section('content')
Kayıt İşlemini Tamamlayın
Kişisel Bilgilerinizi Girerek Kaydınızı Tamamlayınız.
@if ($errors->any())
@include('components.error-modal-second')
@endif
@if (session('error'))
@include('components.error-modal')
@endif
@if (session('success'))
@include('components.success-modal')
@endif
@endsection
{{-- @section('javascript')
@endsection --}}