91 lines
4.8 KiB
PHP
91 lines
4.8 KiB
PHP
@extends(Theme::viewName('layout'))
|
|
@section('title', trans('admin.create_user'))
|
|
|
|
@section('breadcrumb')
|
|
<li class="breadcrumb-item"><a href="{{ route('home') }}"><i class="fa fa-fw fa-home"></i></a></li>
|
|
<li class="breadcrumb-item"><a href="{{ route('admin') }}">@lang('navigation.breadcrumb.admin')</a></li>
|
|
<li class="breadcrumb-item"><a href="{{ route('users.index') }}">@lang('navigation.breadcrumb.users')</a></li>
|
|
<li class="breadcrumb-item active">@lang('navigation.breadcrumb.create_user')</li>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col">
|
|
<h1>@lang('admin.create_user_title')</h1>
|
|
<p>@lang('admin.create_user_intro')</p>
|
|
<hr/>
|
|
|
|
<form action="{{ route('users.store') }}" method="post">
|
|
{{ csrf_field() }}
|
|
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label class="form-control-label" for="user-name">@lang('forms.name_label')</label>
|
|
<input type="text" class="form-control{{ $errors->has('name') ? ' is-invalid' : '' }}" id="user-name" name="name" value="{{ old('name') }}">
|
|
|
|
@if ($errors->has('name'))
|
|
<div class="invalid-feedback">
|
|
<strong>{{ $errors->first('name') }}</strong>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label class="form-control-label" for="user-email">@lang('forms.email_label')</label>
|
|
<input type="text" class="form-control{{ $errors->has('email') ? ' is-invalid' : '' }}" id="user-email" name="email" value="{{ old('email') }}">
|
|
|
|
@if ($errors->has('email'))
|
|
<div class="invalid-feedback">
|
|
<strong>{{ $errors->first('email') }}</strong>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label class="form-control-label" for="user-password">@lang('forms.password_label')</label>
|
|
<input type="password" class="form-control{{ $errors->has('password') ? ' is-invalid' : '' }}" id="user-password" name="password" value="{{ old('password') }}">
|
|
|
|
@if ($errors->has('password'))
|
|
<div class="invalid-feedback">
|
|
<strong>{{ $errors->first('password') }}</strong>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-6">
|
|
<div class="form-group">
|
|
<label class="form-control-label" for="user-password-confirm">@lang('forms.password_confirm_label')</label>
|
|
<input type="password" class="form-control{{ $errors->has('password_confirmation') ? ' is-invalid' : '' }}" id="user-password-confirm" name="password_confirmation" value="{{ old('password_confirmation') }}">
|
|
|
|
@if ($errors->has('password_confirmation'))
|
|
<div class="invalid-feedback">
|
|
<strong>{{ $errors->first('password_confirmation') }}</strong>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-check">
|
|
<input type="checkbox" class="form-check-input" id="is_admin" name="is_admin" @if (old('is_admin'))checked="checked"@endif>
|
|
<label class="form-check-label" for="is_admin">@lang('forms.admin_user_label')</label>
|
|
</div>
|
|
|
|
<div class="text-right">
|
|
<a href="{{ route('users.index') }}" class="btn btn-link">@lang('forms.cancel_action')</a>
|
|
<button type="submit" class="btn btn-success"><i class="fa fa-fw fa-check"></i> @lang('forms.create_action')</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |