@extends('master.admin') @push('header.scripts') @stop @push('footer.scripts') @stop @section('content')

{{current_client(Auth::user()->id)->client_name}}

@if (count($errors) > 0)

Validation Errors!

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
Add New Form
{!! Form::open(array('url' => 'admin/data/forms')) !!} {!! csrf_field() !!}
33201, 32222, 09645
Cancel
{!! Form::close() !!}
@stop