@extends('layouts.app') @section('title', 'Créer une organisation') @section('content')

Ajouter une organisation

{!! Form::model($organisation, ['method' => 'POST', 'url' => route('organisation.store'), 'enctype' => 'multipart/form-data']) !!} {{ csrf_field() }} @include('organisations.form') {!! Form::hidden('user_id', Auth::id(), []) !!} {!! Form::hidden('slug', 'slug', []) !!}
{!! Form::close() !!}
@endsection @section('script') @endsection