@extends('super_admins.layouts.master') @section('title') Add User @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif Add User Home Users Add User {{-- --}} Add User @csrf Name @if ($errors->has('name')) {{ $errors->first('name') }} @endif Email @if ($errors->has('email')) {{ $errors->first('email') }} @endif Password @if ($errors->has('password')) {{ $errors->first('password') }} @endif Profile Image @if ($errors->has('profile_image_path')) {{ $errors->first('profile_image_path') }} @endif @if(isset($roles)) Role : @if(count($roles) > 0) Please Select @foreach($roles as $role) {{$role->name}} @endforeach @else No Role Exists @endif @if ($errors->has('role')) {{ $errors->first('role') }} @endif @endif Status Select User To Be Active Or Not Submit {{-- --}} @endsection @section('scripts') @endsection