@extends('install.layout') @section('content')
@csrf
{{ ___('Admin credentials') }}
@if (\Session::has('error')) @endif
@if ($errors->has('purchase_code')) {{ $errors->first('purchase_code') }} @endif
{{-- Ask for admin details only if the database is empty --}} @if($db_empty)
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('username')) {{ $errors->first('username') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endif
@endsection