@extends('layouts.app') @section('content')

Borang Permohonan myGAP 1.1 - {{ $form->title }}

Left Logo
BORANG PERMOHONAN MYGAP 1-1
APPLICATION

(SILA RUJUK PANDUAN MENGISI BORANG)

Right Logo
@csrf
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @foreach ($sections as $section)
{{ $section->title }}
@foreach ($section->form_question as $question)
@include('partials.question', [ 'question' => $question, ]) @error('answers.' . $question->id)
{{ $message }}
@enderror
@endforeach
@endforeach
@endsection