@extends('layouts.app') @section('title') {{ __('messages.lab_tech.edit_lab_tech') }} @endsection @section('page_css') @endsection @section('header_toolbar')

@yield('title')

@endsection @section('content')
@include('layouts.errors')
{{ Form::model($user, ['route' => ['lab-technicians.update', $labTechnician->id], 'method' => 'patch', 'files' => 'true', 'id' => 'editLabTechnicianForm']) }} @include('lab_technicians.edit_fields') {{ Form::close() }}
@endsection @section('page_scripts') @endsection @section('scripts') @endsection