@extends('layouts.master') @section('title') Change Password @stop @section('content')
@if (Session::has('success'))
{{ Session::get('success') }}
@elseif (Session::has('delete'))
{{ Session::get('delete') }}
@endif

Options

{{ Form::open(array('action' => 'AdminController@postOptions'))}}
{{ Form::label('footer_text', 'Footer Text') }} {{ Form::textarea('footer_text', htmlspecialchars($footer_text), array('class' => 'form-control')) }}
{{ Form::submit('Save Options', array('class' => 'btn btn-primary'))}} {{ Form::close() }}
@stop