@extends('adminlte::page') @section('title', 'Nova oferta') @section('content_header') Crear nova oferta @endsection @section('breadcrumb') @endsection @section('css') @endsection @section('title', 'Nova oferta') @section('content')
{{ html()->form('POST')->route('ofertas.store')->open() }}
{{ html()->input('id')->name('id')->class(['hidden']) }}
{{ html()->label('Títol') }} {{ html()->input('name')->name('name')->required(true)->class(['form-control']) }}
{{ html()->label('Número oferta') }} {{ html()->input('numerooferta')->name('numerooferta')->required(true)->class(['form-control']) }}
{{ html()->label('Descripció curta') }} {{ html()->input('descripciocurta')->name('descripciocurta')->required(true)->class(['form-control textotrumbo']) }}
{{ html()->label('Descripció llarga') }} {{ html()->input('descripciollarga')->name('descripciollarga')->required(true)->class(['form-control textotrumbo']) }}
{{ html()->label('Link') }} {{ html()->input('link')->name('link')->required(true)->class(['form-control']) }}
{{ html()->label('Municipi') }} {{ html()->input('municipi')->name('municipi')->required(true)->class(['form-control']) }}
{{ html()->label('Data de Publicació') }} {{ html()->date('datapublicacio')->name('datapublicacio')->class(['form-control']) }}
{{ html()->submit('Guardar')->class(['form-control']) }}
{{ html()->form()->close() }}
@endsection @section('js') @endsection