@extends('layouts.admin') @section('content')

send Formulaires

{!! Form::model($script, array("action" => "FormulaireController@save_script", "class" => "form-horizontal")) !!} {!! Form::hidden('id') !!}
{!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('FormulaireController@scripts') . "'", "class" => "btn btn-sm bg-orange waves-effect pull-right")) !!}

Éditer un script

{!! Form::text('nom', old('nom'), array("class" => "form-control", "placeholder" => "Nom du script", "required")) !!}
{!! Form::text('fonction', old('fonction'), array("class" => "form-control", "placeholder" => "Nom de la fonction du script", "required")) !!}
{!! Form::text('class', old('class'), array("class" => "form-control", "placeholder" => "Class de contrôle du script", "required")) !!}

Code

{!! Form::textarea('code', old('code'), array('style' => 'width: 100%', "class" => "editor")) !!}
{!! Form::reset('Annuler', array("onclick" => "window.location = '" . action('FormulaireController@scripts') . "'", "class" => "btn btn-sm bg-orange waves-effect m-t-15 pull-right")) !!}
{!! Form::close() !!}
@stop