@extends('layouts.app') @section('title') {{ __('messages.patient.add') }} @endsection @section('content')

@yield('title')

{{ __('messages.common.back') }}
@include('layouts.errors')
{{ Form::open(['route' => 'patients.store','files' => 'true','id' => 'createPatientForm']) }} {{ Form::hidden('is_edit', false,['id' => 'patientIsEdit']) }} {{ Form::hidden('backgroundImg',asset('web/media/avatars/male.png'),['id' => 'patientBackgroundImg']) }} @include('patients.fields') {{ Form::close() }}
@endsection