@extends('layouts.dash') {!! $with_navbar=false !!} @section('title') Ruches @stop @section('title_card',"Mise à jour d'une Ruche") @section('content')
@if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif
{!! Form::model($ruche, ['ruche' => 'form', 'url' => '/ruches/' . $ruche->id, 'method' => 'PUT']) !!}
{!! Form::label('nom', 'Nom') !!} {!! Form::text('nom', null, ['placeholder' => 'Nom', 'class' => 'form-control']) !!}
{!! Form::label('mac', 'MAC adress') !!} {!! Form::text('mac', null, ['placeholder' => 'XX.XX.XX.XX.XX.XX', 'class' => 'form-control']) !!}
{!! Form::label('gps', 'Position GPS') !!} {!! Form::text('gps', null, ['placeholder' => 'lat,long', 'class' => 'form-control']) !!}
{!! Form::submit('Enregistrer', ['class' => 'btn btn-primary']) !!} Retour
{!! Form::close() !!}
@endsection