@extends('layouts.app') @section('title') The Grand Legend Is Back - Suzuki UAE @endsection @section('meta') @endsection @section('content')
@if($errors->has('success'))

{{$errors->first()}}

@endif image
  • Answer all questions correctly.
  • Register and submit your answers.
  • Get the chance to Avail a Gift voucher worth AED 1,000.

LET'S START

@if($errors->has('error'))

{{$errors->first()}}

@endif
@csrf
@if($fields['question_1'])
@if($errors->has('question_1'))
{{ $errors->first('question_1') }}
@endif
@endif() @if($fields['question_2'])
@if($errors->has('question_2'))
{{ $errors->first('question_2') }}
@endif
@endif()
@if($fields['question_3'])
@if($errors->has('question_3'))
{{ $errors->first('question_3') }}
@endif
@endif()
@if($fields['question_4'])
@if($errors->has('question_4'))
{{ $errors->first('question_4') }}
@endif
@endif()
@if($fields['question_5'])
@if($errors->has('question_5'))
{{ $errors->first('question_5') }}
@endif
@endif()
Registration form
@if($errors->has('first_name'))
{{ $errors->first('first_name') }}
@endif
@if($errors->has('email'))
{{ $errors->first('email') }}
@endif
@if($errors->has('tel'))
{{ $errors->first('tel') }}
@endif
@if($errors->has('emirate'))
{{ $errors->first('emirate') }}
@endif

Final step: After Clicking Submit you will receive an email with a confirmation link to complete your submission.

@endsection