@extends('dashboard::master') {{-- Autor: Giovanni López O. @gmlo_89 --}} @section('content') {{ Alert::render() }}

@lang('dashboard::label.attachments')

{{ Alert::render() }}
{{ trans('dashboard::label.go_back') }}
Archivos

Los archivos que se agreguen a la siguiente carpeta seán los que se envien como attach en los correos a los clientes una vez hecha la reservación.

{{ Form::open(['url' => route('attachments.upload'), 'files' => true, 'method' => 'POST', 'class' => 'form-horizontal', 'id' => 'frmPrincipal']) }}
{{ Form::close() }}
@if(count($files) == 0) @endif @foreach ($files as $file) @endforeach
Archivo Opción
No hay archivos para attach
{{ $file['text'] }} {{ Form::open(['url' => route('attachments.destroy'), 'method' => 'DELETE']) }} {{ Form::hidden('file', $file['url']) }} {{ Form::close() }}
@stop @section('scripts') @stop