@extends('layouts.app-admin') @section('title', 'User Management') @section('content')
{{trans('admin_default.create_new_user')}}
{{trans('admin_default.personal_date_details')}}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
{{-- name --}}
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
​​​​​​​​​​​​​ {{-- email --}}
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
{{-- phone --}}
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
{{-- username --}}
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
{{-- password --}}
@if ($errors->has('password_confirmation')) {{ $errors->first('password_confirmation') }} @endif
{{-- Comfimation Password --}}
{{trans('admin_default.user_permission_in_system')}}
@foreach($modules as $key => $module)
@if($module->can_view) @endif @if($module->can_add) @endif @if($module->can_edit) @endif @if($module->can_delete) @endif
{{-- .form-group --}} @endforeach
@endsection @section('script')