@extends('layouts.admin') @section('page-title') {{ __('Create User') }} @endsection @section('breadcrumb') @endsection @section('content')
@csrf
{{ $errors->first('name') }}
{{ $errors->first('email') }}
{{ Form::label('categories', __('Category'),['class'=>'col-form-label']) }} {{ Form::select('categories[]', $categories,null, array('class' => 'form-control multi-select ','id'=>'choices-multiple','multiple'=>'')) }}
{{ __('Login is enable') }}
{{ Form::checkbox('password_switch', '1', isset($settings['password_switch']) && $settings['password_switch'] == '1' ? 'checked' : '', ['class' => 'form-check-input', 'id' => 'password_switch']) }}
{{ $errors->first('password') }}
{{ $errors->first('password_confirmation') }}

{{--
--}} {{--
--}}
@endsection @push('scripts') @endpush