PHP Classes

File: resources/views/frontend/pages/users/dashboard.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Laravel Ecommerce Site   resources/views/frontend/pages/users/dashboard.blade.php   Download  
File: resources/views/frontend/pages/users/dashboard.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Ecommerce Site
Application to sell products using Laravel
Author: By
Last change:
Date: 1 year ago
Size: 488 bytes
 

Contents

Class file image Download
@extends('frontend.pages.users.master')

@section('sub-content')
  <div class='container'>
    <h2>Welcome {{ $user->first_name . ' '. $user->last_name }}</h2>
    <p>You can change your profile and every informations here..</p>
    <hr>

    <div class="row">
      <div class="col-md-4">
        <div class="card card-body mt-2 pointer" onclick="location.href='{{ route('user.profile') }}'">
          <h3>Update Profile</h3>
        </div>
      </div>
    </div>
  </div>
@endsection