2016-09-21 12:10:37 +01:00
|
|
|
@extends('install.layout')
|
|
|
|
|
2017-03-24 14:43:53 +00:00
|
|
|
@section('title', trans('installer.administrator_title'))
|
2016-09-21 12:10:37 +01:00
|
|
|
@section('content')
|
2016-10-06 11:30:39 +01:00
|
|
|
<h3>@lang('installer.administrator_title')</h3>
|
|
|
|
<p>@lang('installer.administrator_intro')</p>
|
2016-09-21 12:10:37 +01:00
|
|
|
|
2016-10-06 15:07:30 +01:00
|
|
|
@if (count($errors) > 0)
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
<ul>
|
|
|
|
@foreach ($errors->all() as $form_error)
|
|
|
|
<li>{{ $form_error }}</li>
|
|
|
|
@endforeach
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
2016-09-21 12:10:37 +01:00
|
|
|
<div class="row" style="margin-top: 30px;">
|
2017-09-05 14:59:18 +01:00
|
|
|
<div class="col-md-6 mr-md-auto ml-md-auto">
|
2016-10-06 15:07:30 +01:00
|
|
|
<form action="{{ route('install.administrator') }}" method="post">
|
2016-09-21 12:10:37 +01:00
|
|
|
{{ csrf_field() }}
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="name">Name:</label>
|
|
|
|
<input type="text" class="form-control" id="name" name="name" value="{{ old('name') }}" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="email">E-mail address:</label>
|
|
|
|
<input type="email" class="form-control" id="email" name="email" value="{{ old('email') }}" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="password">Password:</label>
|
|
|
|
<input type="password" class="form-control" id="password" name="password" value="{{ old('password') }}" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="password-confirm">Confirm Password:</label>
|
2016-10-06 15:07:30 +01:00
|
|
|
<input type="password" class="form-control" id="password-confirm" name="password_confirmation" value="{{ old('password-confirm') }}" />
|
2016-09-21 12:10:37 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group text-right">
|
2016-10-06 15:07:30 +01:00
|
|
|
@if ($can_skip)
|
|
|
|
<a class="btn btn-default" href="{{ route('install.administrator', ['skip' => 1]) }}">Skip</a>
|
|
|
|
@endif
|
2017-03-24 14:43:53 +00:00
|
|
|
<button type="submit" class="btn btn-success"><i class="fa fa-fw fa-check"></i> @lang('forms.continue_action')</button>
|
2016-09-21 12:10:37 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|