@extends('includes.master') @section('content')
@if(Session::has('message'))
× {{ Session::get('message') }}
@endif

You Are Logged in As: {{Auth::user()->name}}

Recent Orders

@foreach($orders as $order) @foreach(array_combine($order->products, $order->quantities) as $product => $quantity) @endforeach @endforeach
Order ID Product Quantity Date Status
{{$order->order_number}} {{\App\Product::findOrFail($product)->title}} {{$quantity}} {{$order->booking_date}} {{ucfirst($order->status)}}

Update Profile Informations


{{ csrf_field() }}
@if ($errors->has('error')) {{ $errors->first('password') }} @endif

Change Password


{{ csrf_field() }}
@if ($errors->has('error')) {{ $errors->first('password') }} @endif
@if(Auth::guest())

Logged

@else

Guest

@endif
@stop @section('footer') @stop