podcastartgenerator/site/resources/views/layouts/guest.blade.php

34 lines
925 B
PHP
Raw Normal View History

2023-12-15 01:53:04 -05:00
@extends('layouts.master')
2023-12-15 01:53:04 -05:00
@section('page-title', 'Account')
2023-12-15 01:53:04 -05:00
@section('page-top')
<section class="inner-page-banner bg-2 bg-image">
<div class="container">
<div class="inner text-center">
2023-12-15 02:03:28 -05:00
<h1 class="title">Account</h1>
2023-12-15 01:53:04 -05:00
<nav class="mt-4">
<ol class="breadcrumb justify-content-center">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active">Account</li>
</ol>
</nav>
</div>
</div>
</section>
@endsection
2023-12-15 01:53:04 -05:00
@section('page-content')
<section class="signup-wrapper signin-wrapper ptb-120">
<div class="container">
<div class="row">
<div class="col-xl-6 offset-xl-3 col-lg-12">
<div class="authbox">
{{ $slot }}
</div>
</div>
</div>
2023-12-15 01:53:04 -05:00
</div>
</section>
@endsection