PHP Classes

File: resources/views/frontend/user/profile/index.blade.php

Recommend this page to a friend!
  Classes of Nyi Nyi Lwin   mtube   resources/views/frontend/user/profile/index.blade.php   Download  
File: resources/views/frontend/user/profile/index.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: mtube
Application to share videos between users
Author: By
Last change:
Date: 2 years ago
Size: 1,617 bytes
 

Contents

Class file image Download
@extends('layouts.account')

@section('dashboard')
    <div class="flex justify-between">
        <h2 class="text-2xl font-bold leading-7 text-gray-900 sm:text-3xl sm:truncate">
            {{ __('Personal info') }}
        </h2>
    </div>

    <div class="mt-12">
        <div class="flex flex-row flex-wrap">
            <div class="w-full md:w-1/3">
                <div class="px-4 md:px-0">
                    <h3 class="text-lg font-medium leading-6 text-gray-900">{{ __('Profile Information') }}</h3>
                    <p class="mt-1 text-sm leading-5 text-gray-600">{{ __("Update your account's profile information and email address.") }}</p>
                </div>
            </div>
            <div class="mt-4 md:mt-0 w-full md:w-2/3 pl-0 md:pl-2">
                @livewire('frontend.profile.update-profile-information')
            </div>
        </div>

        <div class="py-8">
            <div class="border-t border-transparent md:border-gray-200"></div>
        </div>

        <div class="flex flex-row flex-wrap">
            <div class="w-full md:w-1/3">
                <div class="px-4 md:px-0">
                    <h3 class="text-lg font-medium leading-6 text-gray-900">{{ __('Update Password') }}</h3>
                    <p class="mt-1 text-sm leading-5 text-gray-600">{{ __('Ensure your account is using a long, random password to stay secure.') }}</p>
                </div>
            </div>
            <div class="mt-4 md:mt-0 w-full md:w-2/3 pl-0 md:pl-2">
                @livewire('frontend.profile.update-password')
            </div>
        </div>
    </div>
@endsection