Skip to content

Instantly share code, notes, and snippets.

@silverly
Created April 29, 2015 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save silverly/edfaffa56a14403b27f9 to your computer and use it in GitHub Desktop.
Save silverly/edfaffa56a14403b27f9 to your computer and use it in GitHub Desktop.
laravle bitches
@extends('layouts.admin')
@section('hero-header')
<header>
<div class="overlay"></div>
<div class="header-content center-vertical">
<h1>Edit Shop</h1>
</div>
</header>
@stop
@section('content')
<section class="clearfix">
<div class="section-inner full">
<div id="add-edit-form" class="on">
{{Form::model($shop, array('route' => array('shop.update', $shop->id)))}}
{{Form::text('name')}}
<input name="description"/>
{{Form::close()}}
</div>
</div>
</section>
@stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment