@extends('layouts.main') @section('title', 'Customer view') @section('css') @endsection @section('nav') @include('layouts.nav') @endsection @section('content')
{!! Form::open(['action'=>'CustomersController@update', 'method'=>'put']) !!}
Add/Edit Customer details
{!! Form::close() !!}
@if(Session::has('status')) @if(Session::get('status') == 'success')
Alert! Customer details updated.
@endif @endif
@endsection @section('scripts') @endsection