@extends('layouts/master') @section('title') Create Client - Technic Solder @stop @section('content')

Client Management


Add Client
@if ($errors->all())
@foreach ($errors->all() as $error) {{ $error }}
@endforeach
@endif
{!! Form::open() !!} {!! Form::hidden("add-client", 1) !!}
{!! Form::submit('Add Client', ['class' => 'btn btn-success']) !!} {!! Html::link('client/list/', 'Go Back', ['class' => 'btn btn-primary']) !!} {!! Form::close() !!}
@endsection