podcastartgenerator/site/resources/views/profile/edit.blade.php

21 lines
702 B
PHP

<x-app-layout>
<x-slot name="header">
<h2 class="">
{{ __('Manage Account Credentials') }}
</h2>
</x-slot>
<section class="signup-wrapper signin-wrapper ptb-4">
<div class="container">
<div class="row d-flex-row d-flex align-content-stretch flex-wrap">
<div class="col-xl-5 col-lg-12 authbox">
@include('profile.partials.update-profile-information-form')
</div>
<div class="col-xl-5 offset-xl-2 col-lg-12 authbox">
@include('profile.partials.update-password-form')
</div>
</div>
</div>
</section>
</x-app-layout>