@extends('back.layouts.layout') @section('title','Update Profile') @section('content-header') Update Profile Dashboard User Update Profile @endsection @section('content') @csrf @method('post') @if ($profileData->image!="") @endif Name * @if ($errors->has('name')){{ $errors->first('name') }}@endif Email * @if ($errors->has('email')){{ $errors->first('email') }}@endif Phone * @if ($errors->has('phone')){{ $errors->first('phone') }}@endif User Image less than 50KB;jpg, jpeg, png (300X300)px @if ($errors->has('image')){{ $errors->first('image') }}@endif @endsection