@extends('admin.layouts.main') @section('title', 'Edit User') @section('menu', 'Users') @section('content')
@csrf @method('PUT')
Edit: {{ $user->first_name }} {{ $user->last_name }}
@if ($errors->has('first_name')){{ $errors->first('first_name') }}@endif
@if ($errors->has('last_name')){{ $errors->first('last_name') }}@endif
@if ($errors->has('email')){{ $errors->first('email') }}@endif
Status
Publish
@endsection