This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="adminAuth" class="reveal-modal medium adminAuth2"> | |
{{Form::open(array('url'=>'/login'))}} | |
{{ Form::email('email', $value = null, $attributes = array())}} | |
{{ Form::password('password', $value = null, $attributes = array())}} | |
{{ Form::submit('Login', $attributes = array('class'=>'button tiny radius'))}} | |
<a class="close-reveal-modal">×</a> | |
{{Form::close()}} | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="myModal" class="reveal-modal medium myModal2"> | |
<h3 class="subheader">Contact Us</h3> | |
{{Form::open(array('url' => 'foo/bar'))}} | |
{{Form::label('email', 'Your E-mail')}} | |
{{Form::text('email', '', array('placeholder'=>'@', 'class'=>'txt'))}} | |
{{Form::label('msg', 'Enter a Message')}} | |
{{Form::textarea('msg', '', array('placeholder'=>'', 'class'=>'txtarea'))}} | |
{{ Form::submit('Send', array('class'=>'secondary button small radius'))}} | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<img src="{{url('comp/img/name.png')}}" alt="name"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{link_to('#', '${1:linkName}');}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{ HTML::image('myphoto.png', 'alt-text')}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{link_to_route('routeName', 'Visible_Text_of_the_Laravel_Link');}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a href="{{URL::route('home')}}" title="Home Page"> | |
<img src="{{url('comp/img/logo.png')}}" alt="Logo"> | |
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row"> | |
<div class="large-12 columns"> | |
{{Form::open(array('url' => 'foo/bar'))}} | |
<fieldset > | |
<legend><h3>Contact Us</h3></legend> | |
<div class="row"> | |
<div class="small-6 columns"> | |
{{Form::label('firstName', 'First Name')}} | |
{{Form::text('firstName', '', array('placeholder'=>'Your name', 'class'=>'className'))}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="large-12 columns panel"> | |
<span class="find">FIND YOUR HOME</span> | |
<div class="row"> | |
<div class="large-12 columns"> | |
{{Form::open(array('url' => 'foo/bar'))}} | |
<div class="row"> | |
<div class="large-12 columns"> | |
{{Form::label('location', 'Location')}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="navPanel"> | |
<div class="row"> | |
<div class="large-12 columns"> | |
<nav class="top-bar"> | |
<ul class="title-area"> | |
<!-- Title Area --> | |
<li class="name"> | |
<h1> | |
{{link_to_route('home', 'your_text_is_here');}} |