42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| @extends('layouts.master')
 | |
| 
 | |
| @section('page-title', 'Manage Account')
 | |
| 
 | |
| @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
 | |
| 
 | |
| @section('page-content')
 | |
| <section class="ptb-120">
 | |
|     <div class="container">
 | |
|         <div class="row">
 | |
|             <!-- Page Heading -->
 | |
|             @if (isset($header))
 | |
|                 <header class="">
 | |
|                     <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>
 | |
|     </div>
 | |
| </section>
 | |
| @endsection
 |