@extends('dashboard.layouts.app') @section('styles') @endsection @section('title', __('dashboard.Moderators') . ' | ' . __('dashboard.Edit Moderator')) @section('page_heading', __('dashboard.Edit Moderator')) @section('breadcrumb') @endsection @section('actions') {{ __('dashboard.View All Moderators') }} {{ __('dashboard.Add New Moderator') }} @endsection @section('content')

{{ __('dashboard.Edit Moderator') }}

@csrf @method('PATCH')
@error('name')
{{ $message }}
@enderror
@error('email')
{{ $message }}
@enderror
@error('password')
{{ $message }}
@enderror {{ __('dashboard.Leave blank if you do not want to change the password.') }}
@error('password_confirmation')
{{ $message }}
@enderror
@error('role_id')
{{ $message }}
@enderror
{{ __('dashboard.Cancel') }}
@endsection @section('scripts') @endsection