@extends('back.layouts.layout') @section('title','Edit User') @section('content-header') Edit User Dashboard User Edit User @endsection @section('content') @csrf @method('put') 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 Password @if ($errors->has('password')){{ $errors->first('password') }}@endif User Image @if($user->image!="") @endif @if ($errors->has('image')){{ $errors->first('image') }} @endif Status @foreach($statuses as $key=> $status) status) selected @endif>{{ $status }} @endforeach @if ($errors->has('status')){{ $errors->first('status') }} @endif Publish Save User List @endsection