@extends('layouts.index') @section('title') Forms Request @endsection @section('css') @endsection @section('content')

Edit Forms

{{-- You can us the validation like what we did --}}
Template
Preview Template
Signer
{{--

--}}
Receiver
@foreach ($receiverInternal as $key => $internal) @if ($loop->iteration == 1)
@endif @endforeach
@foreach ($receiverInternal as $key => $internal) @if ($loop->iteration > 1)
@endif @endforeach
@foreach ($receiverExternal as $key => $external) @if ($loop->iteration == 1)
@endif @endforeach
@foreach ($receiverExternal as $key => $external) @if ($loop->iteration > 1)
@endif @endforeach
Forms Content

Form Input

{!! $html !!}

Attachment

@php $default = null; if (Storage::exists($detail->attachment)) { $default = url(Storage::url($detail->attachment)); } @endphp
@endsection @section('js') @endsection