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