@extends('layouts.app') @section('content')
Proposer un trajet
@include('tooltips.error', ['errors' => $errors]) {!! Form::open(['route' => 'drive.store']) !!} {{ csrf_field() }}
{!! Form::label('create_drive_select_event', 'Activité', ['class' => 'control-label']) !!} {!! Form::select('create_drive_select_event', $events, ['class' => 'form-control']) !!}
{!! Form::label('create_drive_recurrence', 'Récurrence', ['class' => 'control-label']) !!} {!! Form::select('create_drive_recurrence', $driveRecurrences, 1, ['id' => 'create_drive_recurrence']) !!}
{!! Form::label('create_drive_type', 'Type de trajet', ['class' => 'control-label']) !!} {!! Form::select('create_drive_type', $driveTypes) !!}
{!! Form::label('create_drive_seats', 'Places disponibles', ['class' => 'control-label']) !!} {!! Form::select('create_drive_seats', [1=>1,2=>2,3=>3,4=>4,5=>5,6=>6,7=>7,8=>8], $seats, ['class' => 'form-control']) !!}
{!! Form::label('create_drive_address_home', 'Adresse du domicile', ['class' => 'control-label']) !!} {!! Form::text('create_drive_address_home', $addressHome, ['class' => 'form-control', 'disabled']) !!} {{--{!! Form::hidden('create_drive_address_home_id', $addressHomeId, ['id' => 'create_drive_address_home_id']) !!}--}}
{!! Form::label('create_drive_address_event', 'Adresse de l\'activité', ['class' => 'control-label']) !!} {!! Form::text('create_drive_address_event', $addressEvent, ['class' => 'form-control', 'disabled']) !!} {{--{!! Form::hidden('create_drive_address_event_id', null, ['id' => 'create_drive_address_event_id']) !!}--}}
{!! Form::submit('Créer trajet', array('class' => 'btn btn-primary', 'name' => 'create_drive')) !!}
{!! Form::close() !!}
@endsection @section('page-script') @endsection