@extends('adminlte::page') @section('title', 'Textos') @section('content_header') Textos @endsection @section('breadcrumb') @endsection @section('css') @endsection @section('content')
{{ html()->form('PUT')->route('textos.update', 1)->open() }}

TEXT PÀGINA PRINCIPAL


{{ html()->label('Títol') }} {{ html()->input('title')->name('title')->value($textohome->title)->class(['form-control']) }}
{{ html()->label('Contingut') }} {{ html()->textarea('text')->name('text')->value($textohome->text)->class(['form-control textolegal']) }}
{{ html()->input('id')->name('id')->value('1')->class(['hidden']) }}
{{ html()->submit('Guardar')->class(['btn btn-success']) }} Cancelar
{{ html()->form()->close() }}



@endsection @section('js') @endsection