2020-07-12 19:36:12 +01:00
|
|
|
@extends('adminlte::page')
|
|
|
|
|
2022-03-19 05:56:20 +00:00
|
|
|
@section('title', config('app.name') . ' | ' . __('Previewing application form'))
|
2020-07-12 19:36:12 +01:00
|
|
|
|
|
|
|
@section('content_header')
|
|
|
|
|
2022-03-19 05:56:20 +00:00
|
|
|
<h4>{{__('Administration')}} / {{__('Form builder')}} / {{__('Preview')}}</h4>
|
2020-07-12 19:36:12 +01:00
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|
|
@section('js')
|
|
|
|
|
|
|
|
<x-global-errors></x-global-errors>
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col-6 offset-4">
|
|
|
|
|
2022-03-19 05:56:20 +00:00
|
|
|
<img src="/img/preview.svg" width="250px" alt="{{ __('Form preview illustration') }}" />
|
2020-07-12 19:36:12 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row mt-4">
|
|
|
|
|
|
|
|
<div class="col">
|
|
|
|
<div class="alert alert-success">
|
|
|
|
|
2022-03-19 05:56:20 +00:00
|
|
|
<h5><i class="fas fa-eye"></i> {{__('This is how your form looks like to applicants.')}}</h5>
|
2020-07-12 19:36:12 +01:00
|
|
|
|
|
|
|
<p>
|
2022-03-19 05:56:20 +00:00
|
|
|
{{__('You may edit it and add more fields later.')}}
|
2020-07-12 19:36:12 +01:00
|
|
|
</p>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col">
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
|
|
|
|
<div class="card-header">
|
|
|
|
|
2022-03-19 05:56:20 +00:00
|
|
|
<h3>{{ $title }} - {{__('Form')}}</h3>
|
2020-07-12 19:36:12 +01:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
|
|
|
@component('components.form', ['form' => $form, 'disableFields' => true])
|
|
|
|
|
|
|
|
@endcomponent
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-footer text-center">
|
|
|
|
|
2022-03-19 05:56:20 +00:00
|
|
|
<button type="button" class="btn btn-success ml-2" onclick="window.location.href='{{ route('showForms') }}'"><i class="fas fa-chevron-left"></i> {{__('Go back')}}</button>
|
|
|
|
<button type="button" class="btn btn-warning ml-2" onclick="window.location.href='{{ route('editForm', ['form' => $formID]) }}'"><i class="far fa-edit"></i> {{__('Edit')}}</button>
|
2020-07-12 19:36:12 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|
2020-07-16 06:46:20 +01:00
|
|
|
|
|
|
|
@section('footer')
|
|
|
|
@include('breadcrumbs.dashboard.footer')
|
|
|
|
@stop
|