Created
July 12, 2018 21:23
-
-
Save NandoKstroNet/d14d9f0a5245c66720b9a1b4b48eeb66 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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