@extends('master')
@section('head')
@stop
@section('body')
{{ Form::open(array('url' => 'get_started', 'id' => 'startForm')) }}
{{ Form::hidden('guest_key') }}
{{ Form::close() }}
- {{ link_to('about', 'About Us' ) }}
- {{ link_to('plans', 'Plans' ) }}
- {{ link_to('contact', 'Contact Us' ) }}
- {{ link_to('login', Auth::check() ? 'My Account' : 'Login' ) }}
@yield('content')
@stop