@extends('layouts.app') @section('title', 'Modifier photo communauté') @section('content')

{{"Modifier la photo la photo de l'évènement"}}

{!! Form::model($evenement, ['method' => 'POST', 'url' => route('evenement.change-photo.post', $evenement), 'enctype' => 'multipart/form-data']) !!} {{ csrf_field() }}
Choisir une image
@if($errors->has('photo')) {{$errors->first('photo')}} @endif
Annuler
{!! Form::close() !!}
@endsection @section('script') @endsection