@extends('layouts.customer') @section('page-title') User Profile @endsection @section('content')

User Profile

@if(isset($customer->photo)) img @else img @endif

{{$customer->first_name}} {{$customer->last_name}}

User

{{--

Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,

--}}

Personal Information

{{-- EDIT PROFILE --}}
@csrf
@if(@$customer->gender == "Female") Male Female @else Male Female @endif
{{-- --}}
@if($customer->photo) @endif
@endsection @section('js') @endsection