2020-05-05 04:25:56 +00:00
|
|
|
@extends('adminlte::page')
|
|
|
|
|
|
|
|
@section('title', 'Raspberry Network | Application Form Management Tool')
|
|
|
|
|
|
|
|
@section('content_header')
|
|
|
|
|
|
|
|
<h4>Administration / Form Builder</h4>
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
2020-05-06 22:16:34 +00:00
|
|
|
@section('js')
|
|
|
|
|
|
|
|
@if (session()->has('success'))
|
|
|
|
|
|
|
|
<script>
|
|
|
|
toastr.success("{{session('success')}}")
|
|
|
|
</script>
|
|
|
|
|
|
|
|
@elseif(session()->has('error'))
|
|
|
|
|
|
|
|
@foreach(session('error') as $error)
|
|
|
|
|
|
|
|
<script>
|
2020-05-06 23:36:33 +00:00
|
|
|
toastr.error("{{session('error')}}")
|
2020-05-06 22:16:34 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
@endforeach
|
|
|
|
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@stop
|
|
|
|
|
2020-05-05 04:25:56 +00:00
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col-md-5 offset-md-3">
|
|
|
|
|
|
|
|
<div class="card">
|
|
|
|
|
|
|
|
<div class="card-body">
|
|
|
|
|
2020-05-06 02:44:39 +00:00
|
|
|
<form id="formbuilder" action="{{route('saveForm')}}" method="POST">
|
|
|
|
|
|
|
|
@csrf
|
|
|
|
|
|
|
|
<fieldset id="buildyourform">
|
2020-05-06 04:42:55 +00:00
|
|
|
<legend class="text-center">Form Builder</legend>
|
|
|
|
|
|
|
|
<input type="text" name="formName" class="form-control mb-5" placeholder="Name your form..." required>
|
|
|
|
|
2020-05-06 02:44:39 +00:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
</form>
|
2020-05-05 04:25:56 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="card-footer text-center">
|
|
|
|
|
2020-05-06 02:44:39 +00:00
|
|
|
<button onclick="save()" type="button" class="btn btn-success">Save Form</button>
|
2020-05-06 23:36:33 +00:00
|
|
|
<input type="button" value="New Field" class="add btn btn-info ml-3" id="add" />
|
|
|
|
|
2020-05-05 04:25:56 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@stop
|
2020-07-16 05:46:20 +00:00
|
|
|
|
|
|
|
@section('footer')
|
|
|
|
@include('breadcrumbs.dashboard.footer')
|
|
|
|
@stop
|