@extends('adminlte::page') @section('title', 'Editar Sessió informativa') @section('content_header') Editar Sessió informativa {{$sinformativa->datetime}} @endsection @section('breadcrumb') @endsection @section('css') @endsection @section('content')
{{ html()->form('PUT')->route('sinformativas.update', $sinformativa->id)->open() }}
{{ html()->input('id')->name('id')->value($sinformativa->id)->class(['hidden']) }}
{{ html()->label('Data') }}
{{ html()->label("Tipus de sessió informativa") }}
{{ html()->label("Curs/taller relacionat") }}
{{ html()->label('Places') }} {{ html()->number('places')->name('places')->required(true)->class(['form-control'])->value($sinformativa->places) }}
{{ html()->submit('Guardar')->class(['form-control']) }}
{{ html()->form()->close() }}
@endsection @section('js') @endsection