@extends('adminlte::page') @section('title', 'Nou curs/taller') @section('content_header') Crear nou curs/taller @endsection @section('breadcrumb') @endsection @section('css') @endsection @section('title', 'Nou curs/taller') @section('content')
{{ html()->form('POST')->route('cursos.store')->open() }}
{{ html()->input('id')->name('id')->class(['hidden']) }}
{{ html()->label('Nom') }} {{ html()->input('name')->name('name')->required(true)->class(['form-control']) }}
{{ html()->label('Descripció curta') }} {{ html()->input('descripciocurta')->name('descripciocurta')->required(true)->class(['form-control']) }}
{{ html()->label('Descripció') }} {{ html()->input('descripcio')->name('descripcio')->required(true)->class(['form-control']) }}
{{ html()->label("Tipus") }}
{{ html()->label("Categoria") }}
{{ html()->label('Objectius') }} {{ html()->input('objectius')->name('objectius')->required(true)->class(['form-control']) }}
{{ html()->label('Continguts') }} {{ html()->input('continguts')->name('continguts')->required(true)->class(['form-control']) }}
{{ html()->label('Requisits') }} {{ html()->input('requisits')->name('requisits')->required(true)->class(['form-control']) }}
Foto*

Imatge del curs/taller

Ajustar la mida: ajusti la mida perquè la foto ompli tot l'espai disponible
{{ html()->submit('Guardar')->class(['form-control']) }}
{{ html()->form()->close() }}
@endsection @section('js') @endsection