@extends('layouts.app') @section('stylesheets') {{-- --}} {{-- --}} @endsection @section('content')
Προσθέστε Στοιχεία
@if (session('status')) @endif {!! Form::model($pending,['route' => ['request.data.update'], 'method' => 'PATCH']) !!} {{Form::hidden('id', $pending->id)}}
{{Form::label('email', 'Διεύθυνση Email')}} {{Form::email('email', $pending->email, ['readonly'])}}
{{Form::label('Firstname_EL', 'Όνομα Ελ ')}} {{Form::text('Firstname_EL', $pending->Firstname_EL)}} {{Form::label('Lastname_EL', 'Επώνυμο Ελ ')}} {{Form::text('Lastname_EL', $pending->Lastname_EL)}}

{{Form::label('Firstname_EN', 'Όνομα EN ')}} {{Form::text('Firstname_EN', $pending->Firstname_EN)}}
{{Form::label('Lastname_EN', 'Επώνυμο EN ')}} {{Form::text('Lastname_EN', $pending->Lastname_EN)}}
{{Form::label('phone_internal', 'Εσωτερικό')}} {{Form::text('phone_internal', $pending->phone_internal)}}
{{Form::label('phone_external', 'Πλήρες Τηλέφωνο')}} {{Form::text('phone_external', $pending->phone_external)}}
{{Form::label('Fax', 'Fax')}} {{Form::text('Fax', $pending->Fax)}}
{{Form::label('SkypeID', 'Skype')}} {{Form::text('SkypeID', $pending->SkypeID)}}
{{Form::label('Webpage', 'Προσωπική Ιστοσελίδα')}} {{Form::text('Webpage', $pending->Webpage)}}
{{Form::submit('Submit')}}
{!! Form::close() !!}
@endsection @section('javascripts') {{-- --}} @endsection