@extends('layouts/blankLayout') @section('title', 'Guest Entry') @section('page-style') @endsection @section('content')

Welcome to {{ env('APP_NAME') }}! 👋

Powered by {{config('variables.templateName')}}.

Get guest details.

@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif @if($errors->any())
@foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
    @endif {!! Form::open(['url' => "/guest-entry", 'class' => 'p-4 progress-form', 'id' => 'progress-form', 'lang' => 'en', 'files' => true]) !!} @csrf
    Guest Code
    @for ($i = 1; $i <= 6; $i++) @endfor
    {!! Form::button('Proceed', ['type' => 'submit', 'class' => 'btn btn-primary d-grid w-100']) !!}
    {!! Form::close() !!}
    auth-tree triangle-bg auth-tree
    @endsection