Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created July 12, 2018 21:23
Show Gist options
  • Save NandoKstroNet/d14d9f0a5245c66720b9a1b4b48eeb66 to your computer and use it in GitHub Desktop.
Save NandoKstroNet/d14d9f0a5245c66720b9a1b4b48eeb66 to your computer and use it in GitHub Desktop.
@extends('layouts.app')
@section('content')
<div class="container">
<div class="col-12">
<h1>Cadastro de Fotos Restaurante</h1>
<hr>
</div>
<div class="col-12">
<form action="{{route('restaurant.photo.save', ['id' => $restaurant_id])}}" method="post" enctype="multipart/form-data">
{{csrf_field()}}
<div class="form-group">
<label>Carregar Fotos</label>
<input type="file" name="photos[]" multiple>
</div>
<div class="form-group">
<button type="submit" class="btn btn-lg btn-success">Enviar Fotos</button>
</div>
</form>
</div>
</div>
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment