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

Edit profile

@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' => request()->get('admin')['name'], 'locale' => '', ]) @include('cms::components/form-fields/input', [ 'label' => 'Password', 'name' => 'password', 'type' => 'password', 'value' => '', 'locale' => '', ]) @include('cms::components/form-fields/input', [ 'label' => 'Confirm Password', 'name' => 'password_confirmation', 'type' => 'password', 'value' => '', 'locale' => '', ]) @include('cms::components/form-fields/image', [ 'label' => 'Image', 'name' => 'image', 'value' => request()->get('admin')['image'], 'locale' => '', ])
@endsection