@extends('app') @section('content')

{{ Form::open(['route' => ['clients.destroy', $client->id], 'method' => 'delete', 'id' => 'deleteClient']) }} {{ Form::close() }} {{-- Πίσω --}} Στοιχεία πελάτη

{{ csrf_field() }} {{ method_field('PUT') }} {{-- First Name --}}
{{ $errors->first('first') }}
{{-- Last Name --}}
{{ $errors->first('last') }}
{{-- Address --}}
{{ $errors->first('address') }}
{{-- Phone --}}
{{ $errors->first('phone') }}
{{-- Mobile --}}
{{ $errors->first('mobile') }}
{{-- Occupation --}}
{{ $errors->first('occupation') }}
{{-- Kg --}}
{{ $errors->first('kg_start') }}
{{ $errors->first('kg_current') }}
{{-- Fat --}}
{{ $errors->first('fat_start') }}
{{ $errors->first('fat_current') }}
{{-- Comments --}}
{{ $errors->first('comments') }}
{{-- Submit --}}
@endsection @section('scripts') @stop