forked from aslan/applicant-site
55 lines
2.0 KiB
PHP
55 lines
2.0 KiB
PHP
|
@extends('layouts.admin_layout')
|
||
|
@section('content')
|
||
|
@auth()
|
||
|
@can('create', Auth::user())
|
||
|
<div class="">
|
||
|
<h1 class=""> Создать администратора</h1>
|
||
|
|
||
|
{{ Form::open(['url' => route('users.store'), 'method' => 'POST', 'class' => '']) }}
|
||
|
<div class="col-4">
|
||
|
<div>
|
||
|
{{ Form::label('name', 'Логин') }}
|
||
|
</div>
|
||
|
<div class="mt-2">
|
||
|
{{ Form::text('name', '', ['class' => 'form-control']) }}
|
||
|
</div>
|
||
|
<div>
|
||
|
@if ($errors->any())
|
||
|
{{ $errors->first('name') }}
|
||
|
@endif
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
{{ Form::label('email', 'электронная почта') }}
|
||
|
</div>
|
||
|
<div class="mt-2">
|
||
|
{{ Form::text('email', '', ['class' => 'form-control']) }}
|
||
|
</div>
|
||
|
<div>
|
||
|
@if ($errors->any())
|
||
|
{{ $errors->first('email') }}
|
||
|
@endif
|
||
|
</div>
|
||
|
|
||
|
<div>
|
||
|
{{ Form::label('password', 'Пароль') }}
|
||
|
</div>
|
||
|
<div class="mt-2">
|
||
|
{{ Form::text('password', '', ['class' => 'form-control']) }}
|
||
|
</div>
|
||
|
<div>
|
||
|
@if ($errors->any())
|
||
|
{{ $errors->first('password') }}
|
||
|
@endif
|
||
|
</div>
|
||
|
|
||
|
<div class="mt-4">
|
||
|
{{ Form::submit('создать', ['class' => 'btn btn-primary']) }}
|
||
|
</div>
|
||
|
</div>
|
||
|
{{ Form::close() }}
|
||
|
</div>
|
||
|
@endcan
|
||
|
@endauth
|
||
|
@endsection
|