@extends('cms::layouts/dashboard') @section('breadcrumb') @endsection @section('dashboard-content')

Add admin

@if ($errors->any())
@foreach ($errors->all() as $error)

{{ $error }}

@endforeach
@endif @csrf @include('cms::components/form-fields/input', ['label' => 'Name', 'name' => 'name', 'type' => 'text', 'value' => '', 'locale' => null ]) @include('cms::components/form-fields/image', ['label' => 'Image', 'name' => 'image', 'locale' => null ]) @include('cms::components/form-fields/input', ['label' => 'Email', 'name' => 'email', 'type' => 'text', 'value' => '', 'locale' => null ]) @include('cms::components/form-fields/password-with-confirmation', ['label' => 'Password', 'name' => 'password', 'locale' => null ]) @include('cms::components/form-fields/select', ['label' => 'Admin Role', 'name' => 'admin_role_id', 'options' => $admin_roles, 'store_column' => 'id', 'display_column' => 'title', 'value' => '', 'locale' => null ])
@endsection