@extends('layouts.main') @section('title', 'Profile') @section('breadcrumb') @endsection @section('content')
profile-image

{{ $user->name }}

{{ $user->role }}

Full Name:{{ $user->name }}

Phone:{{ $user->phone }}

Email: {{ $user->email }}

Address: {{ $user->address }}

@csrf
Personal Info
@if (session('status'))

Done!

All information has been saved

@elseif (session('error'))

Error!

Invalid information has been provided

@endif
@if ($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if ($errors->has('phone'))

{{ $errors->first('phone') }}

@endif
@if ($errors->has('email'))

{{ $errors->first('email') }}

@endif
@if ($errors->has('address'))

{{ $errors->first('address') }}

@endif
@if ($errors->has('user_img'))

{{ $errors->first('user_img') }}

@endif
{{--
--}} {{--image--}} {{--
--}}
{{----}} Remove
product-pic
@endsection