Initial Commit

This commit is contained in:
dann4624
2022-09-28 09:38:08 +02:00
parent cac476f80f
commit 2d04a269e6
355 changed files with 52166 additions and 25 deletions
+24
View File
@@ -0,0 +1,24 @@
@extends('Layouts.master')
@section('content')
<div class="main-container pb-4">
<form method="post" action="{{route('users.update',['user' => $data])}}">
@if($data->loanerType->name != "adUser")
@can("users_edit_username")
@include('Partials.Form.Input.name')
@include('Partials.Form.Input.user')
@endcan
@include('Partials.Form.Input.password')
@endif
@can("users_edit_role")
@if($data->id != Auth::user()->id)
@include('Partials.Form.Input.role')
@endif
@endcan
@include('Partials.Form.Input.Submit.submit_edit')
</form>
@can('users_delete')
@include('Partials.Form.Input.Modal.delete')
@endcan
</div>
@endsection