@extends('design_1.web.forms.layout') @section('formContent')
{{ trans('update.access_denied') }}

{{ trans('update.form_has_not_yet_started') }}

@if(empty($form->end_date))
{{ trans("update.you_can_fill_out_this_form_from_date",['date' => dateTimeFormat($form->start_date, 'j M Y')]) }}
@else
{{ trans("update.you_can_fill_out_this_form_from_date_to_end_date",['date' => dateTimeFormat($form->start_date, 'j M Y'), 'end_date' => dateTimeFormat($form->end_date, 'j M Y')]) }}
@endif {{ trans('update.back_to_home') }}
@endsection