@extends('admin.layout') @section('css') @endsection @section('content')
ADD YOUR USER AND GIVE PERMISSION FOR THE DASHBOARD
Create User And Assign The Permission
@csrf
@if($errors->has('name'))

{{ $errors->first('name') }}

@endif
@if($errors->has('email'))

{{ $errors->first('email') }}

@endif
Please never share your email & password with anyone else. @if($errors->has('password'))

{{ $errors->first('password') }}

@endif
@foreach ($permissions as $key => $item)
@endforeach
@endsection @section('js') @endsection