@extends("admin.layouts.app") @section("styles") @endsection @section("content")
Update Section
{{Form::open(['route'=>["admin.sections.update",$section->id],'role'=>"form",'method'=>"put", 'files' =>true])}}
{{Form::text("title",$section->title,['class'=>'form-control m-input'])}}
{{Form::text("link", $section->link, ['class'=>'form-control m-input'])}}
{{Form::color("background", $section->background, ['class'=>'form-control m-input'])}}
{{Form::hidden("cat_id", $section->cat_id, ['class'=>'form-control m-input'])}}
{{Form::textarea("description", $section->description, ['class'=>'form-control m-input'])}}
{!! Form::close() !!}
@endsection @section("scripts") @endsection