@extends('layouts.website')
@section('title', 'Customer Account')
@section('content')
@include('website.customer.sidebar')
@foreach ($errors->all() as $message)
{{$message}}
@endforeach
Account Information
- Name: {{$customer->name}}
- Email: {{$customer->email}}
- Phone: {{$customer->phone}}
- Address: {{$customer->address}}
@endsection