2023-12-16 10:51:30 -05:00
|
|
|
@extends('layouts.master')
|
2023-06-21 09:53:21 -04:00
|
|
|
|
2023-12-16 10:51:30 -05:00
|
|
|
@section('page-title', 'Manage Account')
|
2023-06-21 09:53:21 -04:00
|
|
|
|
2023-12-16 10:51:30 -05:00
|
|
|
@section('page-top')
|
|
|
|
<section class="inner-page-banner bg-2 bg-image">
|
|
|
|
<div class="container">
|
|
|
|
<div class="inner text-center">
|
|
|
|
<h1 class="title">Manage Account</h1>
|
|
|
|
<nav class="mt-4">
|
|
|
|
<ol class="breadcrumb justify-content-center">
|
|
|
|
<li class="breadcrumb-item"><a href="/">Home</a></li>
|
|
|
|
<li class="breadcrumb-item active">Manage Account</li>
|
|
|
|
</ol>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
@endsection
|
2023-06-21 09:53:21 -04:00
|
|
|
|
2023-12-16 10:51:30 -05:00
|
|
|
@section('page-content')
|
2023-12-18 10:44:09 -05:00
|
|
|
<section class="ptb-120">
|
2023-12-16 10:51:30 -05:00
|
|
|
<div class="container">
|
|
|
|
<div class="row">
|
2023-06-21 09:53:21 -04:00
|
|
|
<!-- Page Heading -->
|
|
|
|
@if (isset($header))
|
2023-12-16 10:51:30 -05:00
|
|
|
<header class="">
|
2023-06-21 09:53:21 -04:00
|
|
|
<div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8">
|
|
|
|
{{ $header }}
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
<!-- Page Content -->
|
|
|
|
<main>
|
|
|
|
{{ $slot }}
|
|
|
|
</main>
|
|
|
|
</div>
|
2023-12-16 10:51:30 -05:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
@endsection
|