@extends('layouts.app') @section('metadata') Formació i ocupació - Ajuntament de Cardedeu @endsection @section('content')
{{ html()->form('POST')->route('storefrontcursos')->open() }}
{{ html()->input('user_id')->name('user_id')->value($user->id)->class(['hidden']) }}
{{ html()->label('Vull fer un curs (MÀXIM 4 OPCIONS)') }}
@foreach ($cursos as $curso) id == $cursoseleccionat->id) {{"checked"}} @endif @if($user->checkinscripciocurstallersolocurso($curso->id)) {!"checked onclick='event.preventDefault()'!} @endif/>
@endforeach

{{ html()->submit("Inscriure'm als cursos")->class(['form-control']) }}
{{ html()->form()->close() }}
@endsection @section('bottomscripts') @endsection