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