@extends('back.layouts.main') @section('title','Update Profile') @section('content-header')

Update Profile

@endsection @section('content')
@csrf @method('post')
@if ($profile->image!="") User profile picture @else User profile picture @endif
@if ($errors->has('name')){{ $errors->first('name') }}@endif
@if ($errors->has('email')){{ $errors->first('email') }}@endif
@if ($errors->has('phone')){{ $errors->first('phone') }}@endif

Max File Size:50KB | Width:300px | Height:300px | Type:JPG

@if ($errors->has('image')){{ $errors->first('image') }}@endif
@endsection