@extends('layouts.app') {{-- Customize layout sections --}} @section('subtitle', 'COMPANIES') @section('content_header_title', 'COMPANIES') @section('content_header_subtitle', 'UPDATE') {{-- Content body: main page content --}} @section('content_body') {{html()->form('POST', route('company.update', encrypt($company->id)))->open()}}

UPDATE COMPANY

{{html()->label('Name', 'name')}} {{html()->text('name', $company->name)->class('form-control'.($errors->has('name') ? ' is-invalid' : ''))->placeholder('Name')}} {{$errors->first('name')}}
{{html()->form()->close()}} @stop {{-- Push extra CSS --}} @push('css') {{-- Add here extra stylesheets --}} @endpush {{-- Push extra scripts --}} @push('js') @endpush